Skip to content

Commit

Permalink
Fix compose.yml syntax and create example .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
tokiiski committed Jan 16, 2024
1 parent 3c85a20 commit a38b517
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .env.beta

This file was deleted.

File renamed without changes.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,9 @@ Thumbs.db

# Dev config files
/src/assets/config/config-*.ts

# Ignore all .env files
*.env

# But track the example .env file
!.env.example
3 changes: 2 additions & 1 deletion compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ services:
image: docker.io/library/nginx:1.25.3
depends_on:
- web
ports: ${PORT}:80
ports:
- ${PORT}:80
restart: unless-stopped
volumes:
- browser-static:/static
Expand Down

0 comments on commit a38b517

Please sign in to comment.