docker-compose up --build
# Remove any existing containers and images
docker-compose down --rmi all
# Build and start the containers
docker-compose up --build
CREATE DATABASE namedb;
CREATE USER noyon WITH PASSWORD '1234';
GRANT ALL PRIVILEGES ON DATABASE namedb TO noyon;