Docker env #34

Closed
phoenix wants to merge 6 commits from docker_env into devel
2 changed files with 7 additions and 4 deletions
Showing only changes of commit 6fed4ae51f - Show all commits

View File

@@ -8,7 +8,10 @@ pkg/
.gitea/ .gitea/
# Ignore environment files (configure via docker-compose instead) # Ignore environment files (configure via docker-compose instead)
.env* .env
.env.sample
.env.docker
.env.docker.sample
# Ignore IDE/editor specific files # Ignore IDE/editor specific files
.idea/ .idea/

View File

@@ -34,7 +34,7 @@ RUN --mount=type=ssh mkdir src && \
# Copy the actual source code # Copy the actual source code
COPY src ./src COPY src ./src
# If you have other directories like `templates` or `static`, copy them too # If you have other directories like `templates` or `static`, copy them too
COPY .env ./.env COPY .env.docker ./.env
COPY migrations ./migrations COPY migrations ./migrations
# << --- SSH MOUNT ADDED HERE --- >> # << --- SSH MOUNT ADDED HERE --- >>