Skip to content

Commit

Permalink
Setup(Docker): Add Docker Compose with Seq to the project
Browse files Browse the repository at this point in the history
  • Loading branch information
ktutak1337 committed Mar 12, 2024
1 parent 34d27fb commit 5243946
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .env.template
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SEQ_ADMIN_PASSWORD=<here_admin_password>
23 changes: 23 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: "3.7"

services:
seq:
image: datalust/seq
container_name: seq
restart: unless-stopped
environment:
- ACCEPT_EULA=Y
# - SEQ_FIRSTRUN_ADMINPASSWORDHASH=${SEQ_ADMIN_PASSWORD}
networks:
- stellar-chat
ports:
- 5341:80
volumes:
- seq_data:/data

networks:
stellar-chat:
name: stellar-chat-network

volumes:
seq_data:

0 comments on commit 5243946

Please sign in to comment.