mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00

* Github Action build and push to dockerhub * CI updates docker description * Convert rst readme to markdown * Update CONTRIBUTORS * Revert "CI updates docker description" This reverts commit33e2e7b5c2
. * Revert "Convert rst readme to markdown" This reverts commitdc25f8dbe4
. * CI deploy on master branch * CI test image * Fix empty SESSION_COOKIE_SECURE * Dockerfile : sanitize ENV * entrypoint.sh : sort * docker-compose.yml * CI test with docker compose * CI reorganize * Default SESSION_COOKIE_SECURE to True * Add some comments for readability. Co-authored-by: Alexis Métaireau <alexis@notmyidea.org>
13 lines
260 B
YAML
13 lines
260 B
YAML
# This is used by Github actions to ensure docker images build properly.
|
|
version: "3.9"
|
|
|
|
services:
|
|
ihatemoney:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
sut:
|
|
image: alpine
|
|
command: wget --spider ihatemoney:8000
|
|
depends_on:
|
|
- ihatemoney
|