-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdocker-compose-develop.yml
More file actions
37 lines (33 loc) · 824 Bytes
/
docker-compose-develop.yml
File metadata and controls
37 lines (33 loc) · 824 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
36
37
version: '3.7'
services:
alpine_chrome:
image: zenika/alpine-chrome:latest
container_name: gauguin-chrome-alpine
command: [chromium-browser, "--headless", "--disable-gpu", "--no-sandbox", "--disable-dev-shm-usage", "--remote-debugging-address=0.0.0.0", "--remote-debugging-port=9222"]
ports:
- 9222:9222
restart: unless-stopped
networks:
- gauguin_net
gin_gonic:
container_name: gauguin-gin-gonic
build:
context: .
dockerfile: Dockerfile
links:
- alpine_chrome
depends_on:
- alpine_chrome
ports:
- 5491:5491
expose:
- '5491'
volumes:
- ./templates:/app/templates
- ./gauguin.yaml:/app/gauguin.yaml
restart: unless-stopped
networks:
- gauguin_net
networks:
gauguin_net:
driver: bridge