Commit 74f41194894a126cf8620040f8967b569402ad1f
1 parent
3ac85c09
Exists in
master
Sure, why not.
Showing
1 changed file
with
10 additions
and
2 deletions
Show diff stats
docker-compose.yml
1 | -version: '2' | |
1 | +version: '2.0' | |
2 | 2 | services: |
3 | 3 | com_goutenoir_apps_travel-footprint-calculator: |
4 | 4 | container_name: com_goutenoir_apps_travel-footprint-calculator |
... | ... | @@ -28,4 +28,12 @@ services: |
28 | 28 | environment: |
29 | 29 | # - OPTIONS=localhost/compute |
30 | 30 | - OPTIONS=travel-footprint-calculator.apps.goutenoir.com/compute |
31 | - - CRON_SCHEDULE="*/3 * * * *" | |
32 | 31 | \ No newline at end of file |
32 | + - CRON_SCHEDULE="*/3 * * * *" | |
33 | + | |
34 | +# Tip from https://github.com/jwilder/nginx-proxy/issues/1132#issuecomment-392460028 | |
35 | +# Create it first: docker network create webproxy | |
36 | +networks: | |
37 | + default: | |
38 | + external: | |
39 | + name: webproxy | |
40 | + | ... | ... |