This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import uuid | |
from collections.abc import AsyncGenerator, Generator | |
from typing import cast | |
import alembic.command | |
import pytest | |
from alembic.config import Config as AlembicConfig | |
from sqlalchemy import URL, Connection, text | |
from sqlalchemy.ext.asyncio import AsyncEngine, AsyncSession, async_sessionmaker, create_async_engine | |
from testcontainers.postgres import PostgresContainer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
wg-gen-web: | |
image: vx3r/wg-gen-web:latest | |
container_name: wg-gen-web | |
restart: unless-stopped | |
ports: | |
- "8080:8080" | |
environment: | |
- WG_CONF_DIR=/data | |
- WG_INTERFACE_NAME=wg0.conf |