generated from hashicorp/terraform-provider-scaffolding-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
62 lines (60 loc) · 1.51 KB
/
docker-compose.yaml
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
---
version: "3.7"
services:
postgres:
image: postgres:14-alpine
environment:
- POSTGRES_USER=netbox
- POSTGRES_PASSWORD=netbox
- POSTGRES_DB=netbox
redis:
image: redis:6-alpine
netbox: &netbox-base
build:
context: tools/integration
args:
NETBOX_VERSION: ${NETBOX_VERSION:-4.0.9}
NETBOX_BGP_VERSION: ${NETBOX_BGP_VERSION:-0.13.2}
depends_on:
- postgres
- redis
ports:
- 8001:8080
environment:
#DEBUG: "True"
CORS_ORIGIN_ALLOW_ALL: "True"
DB_NAME: netbox
DB_USER: netbox
DB_PASSWORD: netbox
DB_HOST: postgres
REDIS_HOST: redis
REDIS_DATABASE: "0"
REDIS_SSL: "false"
REDIS_CACHE_HOST: redis
REDIS_CACHE_DATABASE: "1"
REDIS_CACHE_SSL: false
SECRET_KEY: 0123456789abcdefghij0123456789abcdefghij0123456789
SKIP_STARTUP_SCRIPTS: "false"
SKIP_SUPERUSER: "false"
SUPERUSER_NAME: admin
SUPERUSER_EMAIL: [email protected]
SUPERUSER_PASSWORD: admin
SUPERUSER_API_TOKEN: ${NETBOX_API_TOKEN:-0123456789abcdef0123456789abcdef01234567}
volumes:
- netbox-media:/media
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/api/status/"]
interval: 10s
timeout: 10s
retries: 20
start_period: 5s
netbox-worker:
<<: *netbox-base
healthcheck: {}
ports: []
command:
- /opt/netbox/venv/bin/python
- /opt/netbox/netbox/manage.py
- rqworker
volumes:
netbox-media: