-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
37 lines (33 loc) · 899 Bytes
/
docker-compose.dev.yml
File metadata and controls
37 lines (33 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
services:
docklift-backend:
build: ./backend
container_name: docklift-backend
restart: unless-stopped
ports:
- "8000:8000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
- ./deployments:/deployments
- ./nginx-proxy/conf.d:/nginx-conf
environment:
- DOCKLIFT_DEPLOYMENTS_PATH=/deployments
- DOCKLIFT_NGINX_CONF_PATH=/nginx-conf
- DOCKLIFT_DOCKER_NETWORK=docklift_network
networks:
- docklift_network
docklift-nginx-proxy:
image: nginx:stable-alpine
container_name: docklift-nginx-proxy
restart: unless-stopped
ports:
- "80:80"
volumes:
- ./nginx-proxy/conf.d:/etc/nginx/conf.d:ro
- ./nginx-proxy/nginx.conf:/etc/nginx/nginx.conf:ro
networks:
- docklift_network
networks:
docklift_network:
name: docklift_network
driver: bridge