forked from melizeche/ayudapy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproduction.yml
38 lines (38 loc) · 949 Bytes
/
production.yml
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
36
37
38
version: '3.5'
volumes:
production_traefik: {}
networks:
stg_default:
external: true
argentinaporvos_default:
internal: true
services:
app:
build:
context: .
dockerfile: docker/production/Dockerfile
volumes:
- .:/code
env_file:
- conf/.env
command: /start
geo:
image: registry.gitlab.com/coderio/backend/geoinversa
depends_on:
- app
env_file:
- conf/.env
traefik:
build:
context: .
dockerfile: ./docker/production/traefik/Dockerfile
image: argxvos_production_traefik
depends_on:
- app
volumes:
- production_traefik:/etc/traefik/acme
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "0.0.0.0:80:80"
- "0.0.0.0:443:443"
- "0.0.0.0:8080:8080"