23 lines
385 B
YAML
23 lines
385 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
app:
|
||
|
image: php:7.2-fpm-alpine
|
||
|
volumes:
|
||
|
- /data/velov.jean-cloud.net:/usr/src/app
|
||
|
restart: unless-stopped
|
||
|
networks:
|
||
|
default:
|
||
|
ipv4_address: 172.29.13.100
|
||
|
deploy:
|
||
|
resources:
|
||
|
limits:
|
||
|
cpus: '0.50'
|
||
|
memory: 100M
|
||
|
|
||
|
networks:
|
||
|
default:
|
||
|
ipam:
|
||
|
config:
|
||
|
- subnet: 172.29.13.0/24
|
||
|
|