Skip to content

Commit

Permalink
updated docker compose example
Browse files Browse the repository at this point in the history
  • Loading branch information
wukko committed Jul 21, 2023
1 parent 15dbf74 commit 38ceb1b
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions docker-compose.yml.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,39 @@ services:
build: .
restart: unless-stopped
container_name: cobalt-api

# if container doesn't run detached on your machine, uncomment the next line:
#tty: true

ports:
- 9000:9000/tcp
# if you're using a reverse proxy, uncomment the next line:
#- 127.0.0.1:9000:9000

environment:
- apiPort=9000
# replace apiURL with your instance's target url in same format
- apiURL=https://co.wuk.sh/
# replace apiName with your instance's distinctive name
- apiName=eu-nl


cobalt-web:
build: .
restart: unless-stopped
container_name: cobalt-web

# if container doesn't run detached on your machine, uncomment the next line:
#tty: true

ports:
- 9000:9000/tcp
- 9001:9001/tcp
# if you're using a reverse proxy, uncomment the next line:
#- 127.0.0.1:9001:9001

environment:
- webPort=9000
- webPort=9001
# replace webURL with your instance's target url in same format
- webURL=https://co.wukko.me/
# replace apiURL with preferred api instance url
- apiURL=https://co.wuk.sh/

0 comments on commit 38ceb1b

Please sign in to comment.