blob: 25a3fba6a62e26a2608f35f93a839af3ac3bbf31 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
version: '3.2'
services:
http-serving:
build:
context: .
dockerfile: Dockerfile.dev
volumes:
- type: "bind"
source: "/var/log/soko"
target: "/var/log/soko"
- type: "bind"
source: "."
target: "/go/src/soko"
environment:
SOKO_LOG_FILE: '/var/log/soko/web.log'
SOKO_DEVMODE: 'true'
# SOKO_DEBUG: 'true'
ports:
- 127.0.0.1:5000:5000
depends_on:
- db
updater:
build:
context: .
dockerfile: Dockerfile.updater.dev
volumes:
- type: "bind"
source: "/mnt/packages-tree"
target: "/mnt/packages-tree"
- type: "bind"
source: "/var/cache/pgo-egencache"
target: "/var/cache/pgo-egencache"
- type: "bind"
source: "."
target: "/go/src/soko"
- type: "bind"
source: "/var/log/soko"
target: "/var/log/soko"
environment:
SOKO_LOG_FILE: '/var/log/soko/updater.log'
SOKO_DEVMODE: 'true'
# SOKO_DEBUG: 'true'
depends_on:
- db
db:
image: postgres:12
restart: always
environment:
POSTGRES_USER: ${SOKO_POSTGRES_USER:-root}
POSTGRES_PASSWORD: ${SOKO_POSTGRES_PASSWORD:-root}
POSTGRES_DB: ${SOKO_POSTGRES_DB:-soko}
volumes:
- pgdata:/var/lib/postgresql/data
pgadmin:
image: dpage/pgadmin4
logging:
driver: none
environment:
PGADMIN_DEFAULT_EMAIL: admin@admin.org
PGADMIN_DEFAULT_PASSWORD: admin
volumes:
- pgadmin:/root/.pgadmin
ports:
- "5050:80"
restart: unless-stopped
volumes:
pgdata:
pgadmin:
|